home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Database / TableView / TableViewController.h < prev    next >
Text File  |  1995-06-12  |  798b  |  39 lines

  1. /* TableViewController.h
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by: Mai Nguyen, NeXT Developer Support
  7.  *
  8.  *
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import <dbkit/dbkit.h>
  13. #import <libc.h>
  14.  
  15. @interface TableViewController:Object
  16. {
  17.     id    dbModule;
  18.     id    dbDatabase;
  19.     id    dbFetchGroup;
  20.     id    dbAttributes;
  21.     id    rootEntity;
  22.     id    dbTableView;
  23.     id    window;
  24.        id     dbQualifier;
  25.      id    sortProp;
  26.         id  propList;
  27. }
  28.  
  29. - appDidInit:sender;
  30. - showAll:sender;
  31. - initTableView;
  32. - fetchGroupWillFetch: sender;
  33. - tableView:sender movedColumnFrom:(unsigned int) old to:(unsigned int) new;
  34.  
  35. - (BOOL)db:aDb willEvaluateString:(const char*)aString usingBinder:aBinder;
  36.  
  37.  
  38. @end
  39.